jQWidgets Forums
Forum Replies Created
-
Author
-
January 19, 2015 at 3:01 pm in reply to: Why does not support checkbox? Why does not support checkbox? #65621
hi peter
ok
.well
Is this functionality being planned in the next upgrade? and Do you have any suggestion for me? because
true false text seem so bad
thanksJanuary 19, 2015 at 11:25 am in reply to: Why does not support checkbox? Why does not support checkbox? #65596hello peter
why? you don’t understandYes I saw there CheckBox but
but only for the row
http://jsfiddle.net/jqwidgets/fhbLa/can I do for this cell? because columntype this does not working for treegrid..
example grid
{ text: ‘Active’, datafield: ‘IsActive’, width: ‘5%’, threestatecheckbox: false, columntype: ‘checkbox’ },
thank youJanuary 19, 2015 at 11:19 am in reply to: How can I do hide custom buttons ? How can I do hide custom buttons ? #65594yes right I do like this
$(“#update”).hide();but I just want to hide the sub rows
January 19, 2015 at 7:38 am in reply to: Why does not support checkbox? Why does not support checkbox? #65574I do not understand you
I have already looked into documents but no documentsJanuary 14, 2015 at 7:31 pm in reply to: custom json or array object list custom json or array object list #65382I tried it but it not working
function StructureTreeDataBind(data) { var dynamicNav = ""; if (data != "undefined") { dynamicNav += '<ul>'; for (var i = 0; i < data.length; i++) { dynamicNav += ' <li id=' + data[i].RootMenu_ID + ' class="mainMenu">'; dynamicNav += '<span class="title">' + data[i].RootMenu_Name + '</span>'; if (data[i].SubMenus != null) { dynamicNav += '<ul class="sub-menu">'; for (var n = 0; n < data[i].SubMenus.length; n++) { dynamicNav += ' <li id=' + data[i].SubMenus[n].SubMenu_ID + '>'; dynamicNav += '<span class="title">' + data[i].SubMenus[n].SubMenu_Name + '</span>'; dynamicNav += '</li>'; for (var s = 0; s < data[i].SubMenus[i].Elements.length; s++) { dynamicNav += '<ul>'; dynamicNav += ' <li id=' + data[i].SubMenus[n].Elements[s].ElementID + '>'; dynamicNav += '<span class="title">' + data[i].SubMenus[n].Elements[s].ElementName + '</span>'; dynamicNav += '</li>'; dynamicNav += '</ul>'; } } dynamicNav += '</ul>'; } dynamicNav += '</li>'; } dynamicNav += '</ul>'; $('#jqxTree').append(dynamicNav); } }
<div id='jqxTree' style='visibility: hidden; float: left; margin-left: 20px;'> </div>
$(document).ready(function () { GetUserGroupStructures(); $('#jqxTree').jqxTree({ height: '400px', hasThreeStates: true, checkboxes: true, width: '330px' }); $('#jqxTree').css('visibility', 'visible'); });
I do not see the arrows and I select checkbox the sub menu, but not selected submenus
I found the problem
I’m sorry my faultOK I’ve seen demo..
thank youhello dimitar thank you answer
October 12, 2014 at 4:36 am in reply to: nested grid id select error nested grid id select error #60992hi OK I found the problem
thanks
var selectedrowindex = nestedGrids[0].jqxGrid(‘getselectedrowindex’);September 28, 2014 at 6:52 am in reply to: only decimal digits is changing only decimal digits is changing #60200hello and When entering values decimal digit does not changing. Thanks!
September 9, 2014 at 8:35 am in reply to: grid cellhover tooltip popup grid cellhover tooltip popup #59304hi peter,
I’m using already “async:false” for function
cellhover: function (element, pageX, pageY) { var index = $("#CrewGrid").jqxGrid('hoveredrow'); var data = $('#CrewGrid').jqxGrid('getrowdata', index); var personData = GetCrewHoverDetail(data.c_ID); // get hover row data $('#PopupName').val(personData.Crews[0].Name); }
function GetCrewHoverDetail(crewId) { $.ajax({ url: '/Crew/Crew/GetCrewDetail', type: 'POST', data: '{"crewId":"' + crewId + '","language":"' + language + '","authId":"' + window.loginId + '","owner":"' + owner + '"}', dataType: 'json', contentType: "application/json; charset=utf-8", async: false,
and
I’ve tried this. but did not work againWhat else could be the problem?
hi
did you understandme me!
I do not want to add two sources
How can I add this here your html code?var source = { datafields: [ { name: 'GroupName', type: 'string' }, { name: 'grp_ID', type: 'string' } ], localdata: result, >> returning data ( database ) }; var Adapter = new $.jqx.dataAdapter(source, { autoBind: true
If it is not possible…
Or as in this example may be.(context menu)
Is it possible for this ListBox?
thank youthank you
hi nadezhda
thanks for the reply
but there is a problem !
How do I merge with the source files?and I don’t want it to get fixed icon.. Does it run on mouse over?
var source1 = [ { html: "<div style='height: 20px; float: left;'><img width='16' height='16' style='float: left; margin-top: 2px; margin-right: 5px; cursor: pointer;' src='/Content/img/Project/Delete.png' onclick='deleteItem(o)' /><span style='float: left; font-size: 13px; font-family: Verdana Arial;'>jqxNumberInput</span></div>", title: 'jqxNumberInput' }, { html: "<div style='height: 20px; float: left;'><img width='16' height='16' style='float: left; margin-top: 2px; margin-right: 5px; cursor: pointer;' src='/Content/img/Project/Delete.png' onclick='deleteItem(1)' /><span style='float: left; font-size: 13px; font-family: Verdana Arial;'>jqxProgressBar</span></div>", title: 'jqxProgressBar' }, { html: "<div style='height: 20px; float: left;'><img width='16' height='16' style='float: left; margin-top: 2px; margin-right: 5px; cursor: pointer;' src='/Content/img/Project/Delete.png' onclick='deleteItem(2)' /><span style='float: left; font-size: 13px; font-family: Verdana Arial;'>jqxCalendar</span></div>", title: 'jqxCalendar' } ]; var source = { datafields: [ { name: 'GroupName', type: 'string' }, { name: 'grp_ID', type: 'string' } ], localdata: result, }; var Adapter = new $.jqx.dataAdapter(source, { autoBind: true }); $(".GroupList").jqxListBox({ source: source, displayMember: "GroupName", valueMember: "grp_ID", width: '200px', height: '250px', });
OK I found the problem
thanks
var EndDate = new Date(parseInt(activeContract.EndDate.substr(6))); -
AuthorPosts