|
code
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
Can aspnet simulate windows pane separator?I am using webcontrol treeview on the left and datagrid on the right of the
html table to simulate windows treeview and listview panes in asp.net. The problem is that I cannot have pane separator as we have in the windows, I cannot resize areas for the treeview and datagrid as we can for treeview pane and listview pane. Are there any controls and techniques in asp.net to allow me to simulate resizable separator of window panes? Thanks, Charts Hi Charts,
Welcome to ASP.NET newsgroup. As for the implement the winform pane separator like functions in ASP.NET webform page, here are some of my understanding and suggestions: In asp.net webpage(or any other dynamic web document techs), all the response content (be displayed in browser ) are html content. And the html display modal (in browser) has different mechanism with the ones in winform application. So we haven't the absolute same controls like the separator control in winform control collection. In fact, in web page, we generally use the frames/frameset based pages to provide the effect like the separated panes in winform. We need to provide a parent page which contains some frameset and in each sub frame, there contains a separate page inside it. And we can make the border which separate the neighbour pages sizeable so that we can drag them in the browser to resize the neighboured frames. And for a visual reference, you can look at the msdn web site: http://msdn.microsoft.com/library which just use the frameset/frame based page to display the top/left/main content sections. How do you think of this? Please feel free to let me know if you have any other questions or ideas. Thanks, Steven Cheng Microsoft Online Support Get Secure! www.microsoft.com/security (This posting is provided "AS IS", with no warranties, and confers no rights.) -------------------- Show quoteHide quote | Thread-Topic: Can aspnet simulate windows pane separator? microsoft.public.dotnet.framework.aspnet.webcontrols:9840| thread-index: AcWFaoa0QZFLAypBRa6KGV5zneKZug== | X-WBNR-Posting-Host: 128.227.73.185 | From: =?Utf-8?B?Q2hhcnRz?= <Acharts@newsgroup.nospam> | Subject: Can aspnet simulate windows pane separator? | Date: Sun, 10 Jul 2005 09:15:02 -0700 | Lines: 9 | Message-ID: <832F8024-4AE1-4B34-965B-20154470C***@microsoft.com> | MIME-Version: 1.0 | Content-Type: text/plain; | charset="Utf-8" | Content-Transfer-Encoding: 7bit | X-Newsreader: Microsoft CDO for Windows 2000 | Content-Class: urn:content-classes:message | Importance: normal | Priority: normal | X-MimeOLE: Produced By Microsoft MimeOLE V6.00.3790.0 | Newsgroups: microsoft.public.dotnet.framework.aspnet.webcontrols | NNTP-Posting-Host: TK2MSFTNGXA03.phx.gbl 10.40.2.250 | Path: TK2MSFTNGXA01.phx.gbl!TK2MSFTNGXA03.phx.gbl | Xref: TK2MSFTNGXA01.phx.gbl Show quoteHide quote | X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet.webcontrols | | I am using webcontrol treeview on the left and datagrid on the right of the | html table to simulate windows treeview and listview panes in asp.net. The | problem is that I cannot have pane separator as we have in the windows, I | cannot resize areas for the treeview and datagrid as we can for treeview pane | and listview pane. Are there any controls and techniques in asp.net to allow | me to simulate resizable separator of window panes? | Thanks, | Charts | | That is a good suggestion. Thanks Steven. Charts
Show quoteHide quote "Steven Cheng[MSFT]" wrote: > Hi Charts, > > Welcome to ASP.NET newsgroup. > As for the implement the winform pane separator like functions in ASP.NET > webform page, here are some of my understanding and suggestions: > > In asp.net webpage(or any other dynamic web document techs), all the > response content (be displayed in browser ) are html content. And the html > display modal (in browser) has different mechanism with the ones in winform > application. > So we haven't the absolute same controls like the separator control in > winform control collection. > > In fact, in web page, we generally use the frames/frameset based pages to > provide the effect like the separated panes in winform. We need to provide > a parent page which contains some frameset and in each sub frame, there > contains a separate page inside it. And we can make the border which > separate the neighbour pages sizeable so that we can drag them in the > browser to resize the neighboured frames. And for a visual reference, you > can look at the > > msdn web site: http://msdn.microsoft.com/library > > which just use the frameset/frame based page to display the top/left/main > content sections. > > How do you think of this? > > Please feel free to let me know if you have any other questions or ideas. > Thanks, > > Steven Cheng > Microsoft Online Support > > Get Secure! www.microsoft.com/security > (This posting is provided "AS IS", with no warranties, and confers no > rights.) > > > > > > > > -------------------- > | Thread-Topic: Can aspnet simulate windows pane separator? > | thread-index: AcWFaoa0QZFLAypBRa6KGV5zneKZug== > | X-WBNR-Posting-Host: 128.227.73.185 > | From: =?Utf-8?B?Q2hhcnRz?= <Acharts@newsgroup.nospam> > | Subject: Can aspnet simulate windows pane separator? > | Date: Sun, 10 Jul 2005 09:15:02 -0700 > | Lines: 9 > | Message-ID: <832F8024-4AE1-4B34-965B-20154470C***@microsoft.com> > | MIME-Version: 1.0 > | Content-Type: text/plain; > | charset="Utf-8" > | Content-Transfer-Encoding: 7bit > | X-Newsreader: Microsoft CDO for Windows 2000 > | Content-Class: urn:content-classes:message > | Importance: normal > | Priority: normal > | X-MimeOLE: Produced By Microsoft MimeOLE V6.00.3790.0 > | Newsgroups: microsoft.public.dotnet.framework.aspnet.webcontrols > | NNTP-Posting-Host: TK2MSFTNGXA03.phx.gbl 10.40.2.250 > | Path: TK2MSFTNGXA01.phx.gbl!TK2MSFTNGXA03.phx.gbl > | Xref: TK2MSFTNGXA01.phx.gbl > microsoft.public.dotnet.framework.aspnet.webcontrols:9840 > | X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet.webcontrols > | > | I am using webcontrol treeview on the left and datagrid on the right of > the > | html table to simulate windows treeview and listview panes in asp.net. > The > | problem is that I cannot have pane separator as we have in the windows, I > | cannot resize areas for the treeview and datagrid as we can for treeview > pane > | and listview pane. Are there any controls and techniques in asp.net to > allow > | me to simulate resizable separator of window panes? > | Thanks, > | Charts > | > | > > Hi Steven,
I tried frameset/frame solution. However the problem is that the framset separates different pages. For example, if I take the event of node click in the treeview in the left of the frame, then I would not be able to get hold of the datagrid controls in the right frame since they are in the different pages. How can I resolve this problem? Thanks, Charts Show quoteHide quote "Steven Cheng[MSFT]" wrote: > Hi Charts, > > Welcome to ASP.NET newsgroup. > As for the implement the winform pane separator like functions in ASP.NET > webform page, here are some of my understanding and suggestions: > > In asp.net webpage(or any other dynamic web document techs), all the > response content (be displayed in browser ) are html content. And the html > display modal (in browser) has different mechanism with the ones in winform > application. > So we haven't the absolute same controls like the separator control in > winform control collection. > > In fact, in web page, we generally use the frames/frameset based pages to > provide the effect like the separated panes in winform. We need to provide > a parent page which contains some frameset and in each sub frame, there > contains a separate page inside it. And we can make the border which > separate the neighbour pages sizeable so that we can drag them in the > browser to resize the neighboured frames. And for a visual reference, you > can look at the > > msdn web site: http://msdn.microsoft.com/library > > which just use the frameset/frame based page to display the top/left/main > content sections. > > How do you think of this? > > Please feel free to let me know if you have any other questions or ideas. > Thanks, > > Steven Cheng > Microsoft Online Support > > Get Secure! www.microsoft.com/security > (This posting is provided "AS IS", with no warranties, and confers no > rights.) > > > > > > > > -------------------- > | Thread-Topic: Can aspnet simulate windows pane separator? > | thread-index: AcWFaoa0QZFLAypBRa6KGV5zneKZug== > | X-WBNR-Posting-Host: 128.227.73.185 > | From: =?Utf-8?B?Q2hhcnRz?= <Acharts@newsgroup.nospam> > | Subject: Can aspnet simulate windows pane separator? > | Date: Sun, 10 Jul 2005 09:15:02 -0700 > | Lines: 9 > | Message-ID: <832F8024-4AE1-4B34-965B-20154470C***@microsoft.com> > | MIME-Version: 1.0 > | Content-Type: text/plain; > | charset="Utf-8" > | Content-Transfer-Encoding: 7bit > | X-Newsreader: Microsoft CDO for Windows 2000 > | Content-Class: urn:content-classes:message > | Importance: normal > | Priority: normal > | X-MimeOLE: Produced By Microsoft MimeOLE V6.00.3790.0 > | Newsgroups: microsoft.public.dotnet.framework.aspnet.webcontrols > | NNTP-Posting-Host: TK2MSFTNGXA03.phx.gbl 10.40.2.250 > | Path: TK2MSFTNGXA01.phx.gbl!TK2MSFTNGXA03.phx.gbl > | Xref: TK2MSFTNGXA01.phx.gbl > microsoft.public.dotnet.framework.aspnet.webcontrols:9840 > | X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet.webcontrols > | > | I am using webcontrol treeview on the left and datagrid on the right of > the > | html table to simulate windows treeview and listview panes in asp.net. > The > | problem is that I cannot have pane separator as we have in the windows, I > | cannot resize areas for the treeview and datagrid as we can for treeview > pane > | and listview pane. Are there any controls and techniques in asp.net to > allow > | me to simulate resizable separator of window panes? > | Thanks, > | Charts > | > | > > Charts,
I believe that the following Web Control may be right up your alley! http://www.obout.com/splitter/ Aaron Thanks
Show quoteHide quote "Aaron Corcoran" wrote: > Charts, > > I believe that the following Web Control may be right up your alley! > > http://www.obout.com/splitter/ > > Aaron > > Thanks for Aaron's informative info.
Hi Charts, Seems the splitter control on the site Aaron mentioned use the DHTML events to perform the sizable function. I haven't dig deep into it , but surely it's a good approach. In addition, as for using frameset/frame based page, though it force us to separate the entire content into individual pages, we can still use the DHTML model to access the elements or fucntions across the frames(by clientside scripting). If you're also interested in this, we can also try looing further into it. Thanks, Steven Cheng Microsoft Online Support Get Secure! www.microsoft.com/security (This posting is provided "AS IS", with no warranties, and confers no rights.) -------------------- | Thread-Topic: Can aspnet simulate windows pane separator? <1121115119.061991.280***@g43g2000cwa.googlegroups.com>| thread-index: AcWGXMROin/GjGG/Q+GqK3qnBtccAA== | X-WBNR-Posting-Host: 216.64.114.162 | From: =?Utf-8?B?Q2hhcnRz?= <Acharts@newsgroup.nospam> | References: <832F8024-4AE1-4B34-965B-20154470C***@microsoft.com> Show quoteHide quote | Subject: Re: Can aspnet simulate windows pane separator? microsoft.public.dotnet.framework.aspnet.webcontrols:9867| Date: Mon, 11 Jul 2005 14:09:03 -0700 | Lines: 13 | Message-ID: <B0B234BB-38B8-4994-9C79-E3A56B824***@microsoft.com> | MIME-Version: 1.0 | Content-Type: text/plain; | charset="Utf-8" | Content-Transfer-Encoding: 7bit | X-Newsreader: Microsoft CDO for Windows 2000 | Content-Class: urn:content-classes:message | Importance: normal | Priority: normal | X-MimeOLE: Produced By Microsoft MimeOLE V6.00.3790.0 | Newsgroups: microsoft.public.dotnet.framework.aspnet.webcontrols | NNTP-Posting-Host: TK2MSFTNGXA03.phx.gbl 10.40.2.250 | Path: TK2MSFTNGXA01.phx.gbl!TK2MSFTNGXA03.phx.gbl | Xref: TK2MSFTNGXA01.phx.gbl Show quoteHide quote | X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet.webcontrols | | Thanks | | "Aaron Corcoran" wrote: | | > Charts, | > | > I believe that the following Web Control may be right up your alley! | > | > http://www.obout.com/splitter/ | > | > Aaron | > | > | The guy from obout - Illya something or the other - who developed and sells
those controls is not trustworthy. He claims he supports his controls but he does not and will not answer mail after he has your money. I learned this the hard way and fell for his bullsh!t because his site looks so good but the guy is dishonest. So you better be a mind reader if you intend to use those controls because there is a lot left unsaid about how they can be used. <%= Clinton Gallagher METROmilwaukee (sm) "A Regional Information Service" NET csgallagher AT metromilwaukee.com URL http://metromilwaukee.com/ URL http://clintongallagher.metromilwaukee.com/ Show quoteHide quote "Steven Cheng[MSFT]" <stch***@online.microsoft.com> wrote in message news:WXVeIg0hFHA.1336@TK2MSFTNGXA01.phx.gbl... > Thanks for Aaron's informative info. > > Hi Charts, > > Seems the splitter control on the site Aaron mentioned use the DHTML > events > to perform the sizable function. I haven't dig deep into it , but surely > it's a good approach. In addition, as for using frameset/frame based page, > though it force us to separate the entire content into individual pages, > we > can still use the DHTML model to access the elements or fucntions across > the frames(by clientside scripting). If you're also interested in this, we > can also try looing further into it. > > Thanks, > > Steven Cheng > Microsoft Online Support > > Get Secure! www.microsoft.com/security > (This posting is provided "AS IS", with no warranties, and confers no > rights.) > -------------------- > | Thread-Topic: Can aspnet simulate windows pane separator? > | thread-index: AcWGXMROin/GjGG/Q+GqK3qnBtccAA== > | X-WBNR-Posting-Host: 216.64.114.162 > | From: =?Utf-8?B?Q2hhcnRz?= <Acharts@newsgroup.nospam> > | References: <832F8024-4AE1-4B34-965B-20154470C***@microsoft.com> > <1121115119.061991.280***@g43g2000cwa.googlegroups.com> > | Subject: Re: Can aspnet simulate windows pane separator? > | Date: Mon, 11 Jul 2005 14:09:03 -0700 > | Lines: 13 > | Message-ID: <B0B234BB-38B8-4994-9C79-E3A56B824***@microsoft.com> > | MIME-Version: 1.0 > | Content-Type: text/plain; > | charset="Utf-8" > | Content-Transfer-Encoding: 7bit > | X-Newsreader: Microsoft CDO for Windows 2000 > | Content-Class: urn:content-classes:message > | Importance: normal > | Priority: normal > | X-MimeOLE: Produced By Microsoft MimeOLE V6.00.3790.0 > | Newsgroups: microsoft.public.dotnet.framework.aspnet.webcontrols > | NNTP-Posting-Host: TK2MSFTNGXA03.phx.gbl 10.40.2.250 > | Path: TK2MSFTNGXA01.phx.gbl!TK2MSFTNGXA03.phx.gbl > | Xref: TK2MSFTNGXA01.phx.gbl > microsoft.public.dotnet.framework.aspnet.webcontrols:9867 > | X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet.webcontrols > | > | Thanks > | > | "Aaron Corcoran" wrote: > | > | > Charts, > | > > | > I believe that the following Web Control may be right up your alley! > | > > | > http://www.obout.com/splitter/ > | > > | > Aaron > | > > | > > | >
Custom control: How to render an embedded image at design-time?
Render and Image on a Button Web User Controls: Exposing Items property of contained controls Load User Control from different directory DropDownList <optgroup> Tool to monitor/trace all method calls? Webcontrol Designer Awareness... Re: accessibility and asp:button WinForm as ASP.NET custom control Register directive for custom web control in VS 2005 Beta 2 |
|||||||||||||||||||||||