Hi,
I am trying to insert into a JQTab a JQCheckBox to obtain the same format as the one you can see in JQCheckBox, but I am not able to set CSS in JQTab to get the same format. Can anybody help me? Grazie Lorenzo _______________________________________________ seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside |
Is a JQCheckBox a jQuery plugin? Do you have a link that describes what
it is? Is it part of a JQWidgetBox widget on squeaksource? If not here is a how-to-create-your-own JQWidgetBox widget: http://lists.squeakfoundation.org/pipermail/seaside/2009-November/021912.html Do you use the #style: method to set your CSS or an external file? Is the JQCheckBox set up to use a jQuery-ui theme by default? Do you have any images & code you can share of what it looks like vs. what you want it to look like? On 09/09/2011 04:41 AM, Lorenzo Schiavina wrote: > Hi, > > I am trying to insert into a JQTab a JQCheckBox to obtain the same > format as the one you can see in JQCheckBox, but I am not able to set > CSS in JQTab to get the same format. > Can anybody help me? > > Grazie > > Lorenzo > > > > _______________________________________________ > seaside mailing list > [hidden email] > http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside _______________________________________________ seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside |
Hi Paul,
thanks for your fast answer and your link. I attach two screenshots: - Screenshot1 is the application I am developping; as base of development I used jquery-widgets/uilayout; under the label 'Application tree' I inserted a subclass of jquery-widgets/checktree - Screenshot2 is the check tree that is shown in the example of jquery-widgets/checktree. As you see, the subclass I used produced a different result: i.e. the margin for the two items Collection and SVGXExampled are missaligned and the dotted frame is missing. The result I want to reach is to obtain the check tree of screenshot2 into the pane of screenshot1. I have seen that in jquery-widgets/checktree there is a method updateRoot::, but I am not able to activate it in my application. Thank you very much for your help. Lorenzo ----- Original Message ----- From: "Paul DeBruicker" <[hidden email]> To: <[hidden email]> Sent: Friday, September 09, 2011 12:49 PM Subject: Re: [Seaside] Help > Is a JQCheckBox a jQuery plugin? Do you have a link that describes what > it is? Is it part of a JQWidgetBox widget on squeaksource? > > > If not here is a how-to-create-your-own JQWidgetBox widget: > http://lists.squeakfoundation.org/pipermail/seaside/2009-November/021912.html > > > Do you use the #style: method to set your CSS or an external file? Is the > JQCheckBox set up to use a jQuery-ui theme by default? Do you have any > images & code you can share of what it looks like vs. what you want it to > look like? > > > > > On 09/09/2011 04:41 AM, Lorenzo Schiavina wrote: >> Hi, >> >> I am trying to insert into a JQTab a JQCheckBox to obtain the same >> format as the one you can see in JQCheckBox, but I am not able to set >> CSS in JQTab to get the same format. >> Can anybody help me? >> >> Grazie >> >> Lorenzo >> >> >> >> _______________________________________________ >> seaside mailing list >> [hidden email] >> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside > > _______________________________________________ > seaside mailing list > [hidden email] > http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside > _______________________________________________ seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside |
I've never used the layout or checktree widget and don't know but I'd
guess that the issue is the CSS class of the unordered list inside the tab is different than outside the tab. Inside the tab it looks like the CSS has no border specified and also has some standard indentation. Outside the tab the CSS has a border and has no indentation. To fix that you could either change the CSS class of the unordered list inside the tab or add/change the CSS selectors for the unordered list in your CSS file that point to the unordered list when its inside the tab. You can view the XPath using firebug in firefox by inspecting the element. On 09/09/2011 11:00 AM, Lorenzo Schiavina wrote: > Hi Paul, > > thanks for your fast answer and your link. > > I attach two screenshots: > > - Screenshot1 is the application I am developping; as base of > development I used jquery-widgets/uilayout; under the label 'Application > tree' I inserted a subclass of jquery-widgets/checktree > - Screenshot2 is the check tree that is shown in the example of > jquery-widgets/checktree. > > As you see, the subclass I used produced a different result: i.e. the > margin for the two items Collection and SVGXExampled are missaligned and > the dotted frame is missing. > > The result I want to reach is to obtain the check tree of screenshot2 > into the pane of screenshot1. > > I have seen that in jquery-widgets/checktree there is a method > updateRoot::, but I am not able to activate it in my application. > > Thank you very much for your help. > > Lorenzo > ----- Original Message ----- From: "Paul DeBruicker" <[hidden email]> > To: <[hidden email]> > Sent: Friday, September 09, 2011 12:49 PM > Subject: Re: [Seaside] Help > > >> Is a JQCheckBox a jQuery plugin? Do you have a link that describes >> what it is? Is it part of a JQWidgetBox widget on squeaksource? >> >> >> If not here is a how-to-create-your-own JQWidgetBox widget: >> http://lists.squeakfoundation.org/pipermail/seaside/2009-November/021912.html >> >> >> >> Do you use the #style: method to set your CSS or an external file? Is >> the JQCheckBox set up to use a jQuery-ui theme by default? Do you have >> any images & code you can share of what it looks like vs. what you >> want it to look like? >> >> >> >> >> On 09/09/2011 04:41 AM, Lorenzo Schiavina wrote: >>> Hi, >>> >>> I am trying to insert into a JQTab a JQCheckBox to obtain the same >>> format as the one you can see in JQCheckBox, but I am not able to set >>> CSS in JQTab to get the same format. >>> Can anybody help me? >>> >>> Grazie >>> >>> Lorenzo >>> >>> >>> >>> _______________________________________________ >>> seaside mailing list >>> [hidden email] >>> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside >> >> _______________________________________________ >> seaside mailing list >> [hidden email] >> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside >> > > > _______________________________________________ > seaside mailing list > [hidden email] > http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside _______________________________________________ seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside |
Thank you!
Lorenzo ----- Original Message ----- From: "Paul DeBruicker" <[hidden email]> To: <[hidden email]> Sent: Friday, September 09, 2011 5:28 PM Subject: Re: [Seaside] Help > I've never used the layout or checktree widget and don't know but I'd > guess that the issue is the CSS class of the unordered list inside the tab > is different than outside the tab. Inside the tab it looks like the CSS > has no border specified and also has some standard indentation. Outside > the tab the CSS has a border and has no indentation. > > > To fix that you could either change the CSS class of the unordered list > inside the tab or add/change the CSS selectors for the unordered list in > your CSS file that point to the unordered list when its inside the tab. > > > You can view the XPath using firebug in firefox by inspecting the element. > > > > > On 09/09/2011 11:00 AM, Lorenzo Schiavina wrote: >> Hi Paul, >> >> thanks for your fast answer and your link. >> >> I attach two screenshots: >> >> - Screenshot1 is the application I am developping; as base of >> development I used jquery-widgets/uilayout; under the label 'Application >> tree' I inserted a subclass of jquery-widgets/checktree >> - Screenshot2 is the check tree that is shown in the example of >> jquery-widgets/checktree. >> >> As you see, the subclass I used produced a different result: i.e. the >> margin for the two items Collection and SVGXExampled are missaligned and >> the dotted frame is missing. >> >> The result I want to reach is to obtain the check tree of screenshot2 >> into the pane of screenshot1. >> >> I have seen that in jquery-widgets/checktree there is a method >> updateRoot::, but I am not able to activate it in my application. >> >> Thank you very much for your help. >> >> Lorenzo >> ----- Original Message ----- From: "Paul DeBruicker" <[hidden email]> >> To: <[hidden email]> >> Sent: Friday, September 09, 2011 12:49 PM >> Subject: Re: [Seaside] Help >> >> >>> Is a JQCheckBox a jQuery plugin? Do you have a link that describes >>> what it is? Is it part of a JQWidgetBox widget on squeaksource? >>> >>> >>> If not here is a how-to-create-your-own JQWidgetBox widget: >>> http://lists.squeakfoundation.org/pipermail/seaside/2009-November/021912.html >>> >>> >>> >>> Do you use the #style: method to set your CSS or an external file? Is >>> the JQCheckBox set up to use a jQuery-ui theme by default? Do you have >>> any images & code you can share of what it looks like vs. what you >>> want it to look like? >>> >>> >>> >>> >>> On 09/09/2011 04:41 AM, Lorenzo Schiavina wrote: >>>> Hi, >>>> >>>> I am trying to insert into a JQTab a JQCheckBox to obtain the same >>>> format as the one you can see in JQCheckBox, but I am not able to set >>>> CSS in JQTab to get the same format. >>>> Can anybody help me? >>>> >>>> Grazie >>>> >>>> Lorenzo >>>> >>>> >>>> >>>> _______________________________________________ >>>> seaside mailing list >>>> [hidden email] >>>> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside >>> >>> _______________________________________________ >>> seaside mailing list >>> [hidden email] >>> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside >>> >> >> >> _______________________________________________ >> seaside mailing list >> [hidden email] >> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside > > _______________________________________________ > seaside mailing list > [hidden email] > http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside > _______________________________________________ seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside |
Free forum by Nabble | Edit this page |