jQWidgets Forums
Forum Replies Created
-
Author
-
October 23, 2012 at 10:09 am in reply to: initrowdetails is not firing in single click initrowdetails is not firing in single click #9933
what I should to do now?Any workaround solution.I must implement this scenerio.2.5 version or further releases will support this scenario or not?
October 23, 2012 at 7:51 am in reply to: initrowdetails is not firing in single click initrowdetails is not firing in single click #9907Hi peter,I have two buttons in action column .you said “initrowdetails is fired just once when the details of a row need to be initialized” .when I click first button initrowdetails function called,then I click other button initrowdetails never called again.İn my scenario initrowdetails function should rendered dynamic content according to which button clicked and initrowdetails should not be called justt once time.Are there any initrowdetails settings to enable initrowdetails function to be called more than one time?
October 8, 2012 at 2:19 pm in reply to: rendering dropdownbutton and dataGrid in editable datagrid columns rendering dropdownbutton and dataGrid in editable datagrid columns #9056Hmm I got in,thanks for your help,
unfortunately I have no idea what I should now for this scenario .My boss wants me to implement this scenario .I ‘m efforting nearly one month on this project .Do you have any other idea for this scenario?October 8, 2012 at 1:49 pm in reply to: rendering dropdownbutton and dataGrid in editable datagrid columns rendering dropdownbutton and dataGrid in editable datagrid columns #9051sorry following statement are corrected
var dropDownButtonDivs=”div id=”dropDownButtonForSkillGrid_’+row+'”> div id=”skillDataGrid_’+row'”/>October 8, 2012 at 1:48 pm in reply to: rendering dropdownbutton and dataGrid in editable datagrid columns rendering dropdownbutton and dataGrid in editable datagrid columns #9050sorry following statement are corrected
var dropDownButtonDivs=”div id=”#dropDownButtonForSkillGrid_’+row+'”>October 8, 2012 at 1:38 pm in reply to: rendering dropdownbutton and dataGrid in editable datagrid columns rendering dropdownbutton and dataGrid in editable datagrid columns #9049But I can create dropdownbutton and datagrid using following codes.I dont create this widgets in cellsrenderer function,I just only create this widgets div element with specified ids ,codes are following
/*LaborRequirementGrid skill cell renderer*/
var renderSkillListDropDownButton=function(row,….){var dropDownButtonDivs=’
“;
return dropDownbuttonDivs;}
Then I use dropDownButtonDivs to create dropdownButton and SkillDatagrid for each laborRequirementgrid skill cells after creating LaborRequirementGrid using following code snippet
for(var row=0;row<laborRequirementDatagridSize;row++)
{
inbox.uiCreater.createDropDownButton("#dropDownButtonForSkillGrid_'+row+'");
datagridCreate.createDataGrid("skillDataGrid_'+row'");
}That is,I dont create dropDownButton and SkillDataGrid widgets in cellsrenderer
October 8, 2012 at 12:10 pm in reply to: rendering dropdownbutton and dataGrid in editable datagrid columns rendering dropdownbutton and dataGrid in editable datagrid columns #9047I know jqxGrid dont support editable dropdownbutton,but As it could be seen on attached codes,My goal is not to create editable skill columns with dropdwon and datagrid,First,I created dropdownbutton and datagrid dom elemnts in renderSkillListDropDownButton cellsrenderer funtion (could be seen in attached code),then While I creating SkillDataGrid in createSkillDataGrid ,I ‘m trying to create drop downs and datagrids in loop using dropdown and datagrid dom elemnent for each skill columns of LaborRequirementDataGrid .I m developing this project using jqxWidgets and Knockout since one month and I must solve this problem ,thanks in advance .
Screenshots
October 8, 2012 at 11:39 am in reply to: rendering dropdownbutton and dataGrid in editable datagrid columns rendering dropdownbutton and dataGrid in editable datagrid columns #9045October 8, 2012 at 11:35 am in reply to: rendering dropdownbutton and dataGrid in editable datagrid columns rendering dropdownbutton and dataGrid in editable datagrid columns #9044Sorry I forgot attaching other screenshots,
-
AuthorPosts