Created
July 22, 2011 01:47
-
-
Save acatl/1098705 to your computer and use it in GitHub Desktop.
ir.itemrenderer's options
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$.widget("ir.itemrenderer", { | |
options: { | |
/** type string, name of widget to use as renderer */ | |
itemRenderer:null, | |
/** type function, function that will be executed on each iteration*/ | |
rendererFunction:null, | |
/** type function, function to process the label that will be used */ | |
labelFunction:null, | |
/** type string, name of the field to use as the label */ | |
labelField:null, | |
/** type Object, data source for the widget */ | |
dataProvider:null | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment