Forum Post: RE: Kendo UI components concerns

Status
Not open for further replies.
S

Santosh Patel

Guest
I would like to understand the use case where you needed to access the form element container (rbi_F_ and rbi_L_). Rest assure that the method to refer form inputs via id and name as integration name is not changing. However, Kendo UI does put a wrapper around the HTML element to provide styling of their own, which means to make visible changes to some form elements (say picklist which would be kendo dropdownlist) you will need to use Kendo APIs exposed on that element. e.g. $('[name=statePicklist]') would be what you are using now to get the picklist and change values. with Kendo dropdownlist wrapper, this would change to $('[name=statePicklist]').data('kendoComboBox').select(...) To summarize, form elements id and name are not changing with the Kendo integration. Neither are any of the documented methods to access such elements (rbf_getSectionBy...). We also are trying to minimize the changes to such elements in the undocumented part but some places may require restructuring to move towards a cleaner and easy to access solution.

Continue reading...
 
Status
Not open for further replies.
Top