jQWidgets Forums
Forum Replies Created
-
Author
-
October 4, 2013 at 6:48 pm in reply to: JQX Tabs background-color change JQX Tabs background-color change #30262
Looping thr all tabs and se it’s BG as below removes Green BG,
but it’s Hover does not work
var len = $(‘#jqxTabs’).jqxTabs(‘length’);
for (var i = 1; i < len – 2; i++) {
$('#jqxTabs .jqx-tabs-title:eq(' + i + ')').css("background-color", "transparent");
}-Panky
I have to put event.target.id == ‘parentGridID’ to avoid executing code.
-Panky
September 27, 2013 at 5:49 pm in reply to: JQXGrid with Dynamic Columns, Grouping and expandallgroups JQXGrid with Dynamic Columns, Grouping and expandallgroups #29735Thanks Dimitar,
Looks like my issue resolved, I load all my tab content in initTabContent.
But, with new version of jQWidgets I got messed up my all Grids layout, let me play little more with it
Thanks
PankySeptember 27, 2013 at 2:42 am in reply to: JQXGrid with Dynamic Columns, Grouping and expandallgroups JQXGrid with Dynamic Columns, Grouping and expandallgroups #29645Please try with Data, where last group has more than 5 rows.
-Panky
September 26, 2013 at 9:23 pm in reply to: JQXGrid with Dynamic Columns, Grouping and expandallgroups JQXGrid with Dynamic Columns, Grouping and expandallgroups #29639And I updated to latest version of jQWidgets (3.0.2).
September 26, 2013 at 9:22 pm in reply to: JQXGrid with Dynamic Columns, Grouping and expandallgroups JQXGrid with Dynamic Columns, Grouping and expandallgroups #29638Thanks Dimitar,
I imitate your sample with my data and it’s looks gud
But… But when I put grid in JQXTab that time it’s mess up with last 4 Rows of grid. [As per my email]
$(‘#jqxTabs’).jqxTabs({ width: 1340, theme: ‘PPPPP’, showCloseButtons: false });
try putting same grid in Tab
And I have updated to jQWidgets (3.0.2)
Thanks
PankySeptember 25, 2013 at 5:52 pm in reply to: JQXGrid with Dynamic Columns, Grouping and expandallgroups JQXGrid with Dynamic Columns, Grouping and expandallgroups #29577Hi
For now I have put a button to Expand/Collapse my Grid Groups and removed autoheight property of Grid.
But this is only temp solution.
-Panky
Hi
ya right autoheight property I confused with jqxGrid.
I have removed autoheight property from Tab , Though, my problem remains same.
In Integration with other widgets” of jqxTabs example, there is height mentioned for Grid “height: ‘84%’,” as well for Tab
$(‘#jqxTabs’).jqxTabs({ width: 600, height: 560, theme: theme, initTabContent: initWidgets });
In my case I have autoheight got grid and I don’t want to mention height for Tab.
Do I have to set Tab height based on Tab Content height, if so , how i can get Tab content height?
Thanks
PankajSeptember 4, 2013 at 6:30 pm in reply to: JQXGrid column set background color JQXGrid column set background color #28350August 9, 2013 at 11:21 pm in reply to: Tab inside Tab with JQXGrid as content having vertical scroll bar Tab inside Tab with JQXGrid as content having vertical scroll bar #26600Thanks Peter,
I put
var dataAdapter = new $.jqx.dataAdapter(source, { loadComplete: onLoadCompelte });
and set jqxGrids autoheight and height based on number of records and it worked like as expected.
Thanks a ton
-Panky
August 9, 2013 at 12:33 am in reply to: Tab inside Tab with JQXGrid as content having vertical scroll bar Tab inside Tab with JQXGrid as content having vertical scroll bar #26533Thanks Peter,
It worked for one scenario, when Grid has 100 rows.
I have same grid where some times it has 5 rows and some times it could have 100 rows.
so how could I take care of it, buy setting grid autoheight = true/false in JS based on count of records?
appreciate your response.
Thanks
PankyAugust 8, 2013 at 8:27 pm in reply to: Tab inside Tab with JQXGrid as content having vertical scroll bar Tab inside Tab with JQXGrid as content having vertical scroll bar #26525Thanks Peter,
I tried to use autoHeight: true and it worked for Fix content vertical scroll bar.
I have Tab control [tabMain] with Dynamic Tabs having IFrame src =”ABCD.aspx” on my main page.
On ABCD.aspx page I have Table [tbl1] at top and then I have another Tab Control [tabContent] with JQXGrid.
if I use “autoHeight: true” of “tabMain” it don’t show all contents of Tab. [It only shows table and not Tab on ABCD.aspx Page]
If I use height:’100%’ then for 100 rows Grid will cut at the bottom.
Thanks
PankyAugust 8, 2013 at 1:46 pm in reply to: Tab Title change based on content [drop down value] change. Tab Title change based on content [drop down value] change. #26491Thanks Dimitar,
Looks like my question is similar as below, just I want to change Tab Title on selection change of my content drop-down or on save button click on my content page.
http://www.jqwidgets.com/community/topic/change-tab-title/
Thanks
PankyAugust 1, 2013 at 2:17 pm in reply to: Display JQXGrid grid lines when Grouping is enable Display JQXGrid grid lines when Grouping is enable #26102Thanks Dimitar,
-Pankaj
June 27, 2013 at 2:39 pm in reply to: Text+Value = displayMember in jqxListBox checkboxes: true Text+Value = displayMember in jqxListBox checkboxes: true #24030Thanks Peter
I added renderer and it worked as I expected
// Create a jqxListBox
$(“#listboxPOM”).jqxListBox({ source: dataAdapter, displayMember: “Name”, valueMember: “POMID”,
checkboxes: true, width: 450, height: 125, theme: theme, renderer:
function (index, label, value) {
var datarecord = data[index];
return datarecord.Name + ” – ” + datarecord.Type;
}
});Thanks again.
-
AuthorPosts