 |
|
 |
i was tried it with a webpart project that contains a datagrid but it doesn't work. any solution about this....
thanks
-- modified at 9:28 Thursday 3rd August, 2006
EyAd
|
|
|
|
 |
|
 |
Hi there, I'm using your control, but I'm always getting this error "Error Creating Control GridSlideHeader1". Any assistance is welcome. Thanks for your time.
|
|
|
|
 |
|
 |
Hi
Thank for this control
Dos it work with Datagridview in VS.2005
Thyanks
|
|
|
|
 |
 | Umm?  |  | ARandomUserWithYourBestInterests | 8:46 23 Feb '05 |
|
 |
This can be done with a style sheet reference, which may be why you are having problems outside of IE, as the call is IE only.
Set UseAccessibleHeaders to on this will render the header tags as TH then add a reference like this in your style sheet.
th.locked {
color: #0000FF;
z-index: 99;
left: expression(document.getElementById("MyDivNameHere").scrollLeft);
}
expressions like this are only supported in IE though
/shrug
|
|
|
|
 |
|
 |
Thank u for this very usefull control
is there a way to use it vertically
|
|
|
|
 |
|
 |
Thanks Tony for the control.
I've added a zIndex property because the slider goes behind divs and tables when used with HierarGrid.
Also added designer show "GSH for GridId" on design page.
If you want a zip of the source please email me. I can't find your address.
Dave.
dbrookes@awtxglobal.com
|
|
|
|
 |
|
 |
hope you dont mind me making a few additions...
|
|
|
|
 |
|
 |
Not a prob... Send me a link to a demo of any new features you add on if you get a chance.
|
|
|
|
 |
|
 |
Nice and simple and works a treat on most pages.
Managed to kill vs.net in design mode though, with a page containing 6 datagrids - only the bottom one had your control associated with it. After adding the control tag in html and switching back to design view, memory and cpu usage went through the roof - had to kill the process@100% cpu and 800MB virtual memory!
The page is kinda complex, and I've yet to narrow down what causes this exactly, but will keep you posted- will try gradually removing sections of the page until it no longer dies etc, etc.
|
|
|
|
 |
|
 |
That seems to be just what I'm looking for. I ran into problems when trying to add GorthControls.dll in the toolbox. It "could not be loaded. Check that any dependencies the file requires are installed". Any idea what this means?
|
|
|
|
 |
|
 |
great job man!!
|
|
|
|
 |
|
 |
It seems not working when the DataGrid is in a div tag.
Is this right?
Calle
|
|
|
|
 |
|
 |
| Tested in my app and it does not work within a " " tag. Any fix for this?
|
|
|
|
 |
|
 |
I wish I had the time to make this bug fix but I can quickly explain why it's not working. The current version assumes the table tag is the outer most node within the form tag. You'll have to modify the JavaScript to dig through nested tags to find the datagrid ID (tableID)
|
|
|
|
 |
|
 |
Mozilla and Firefox don't work.
|
|
|
|
 |
|
 |
Oh well.. Who uses anything besides IE :P
|
|
|
|
 |
|
 |
You should learn more about w3c standards before posting a single-browser useless control...
|
|
|
|
 |
|
 |
1. The only programmers that would use this control is someone working on an internal company site, at which point IE is 99.9% of audience. You unix fokes have to deal with compatibilty issues all the time so this shouldn't be anything new.
2. If you read the threads on this article, you'll notice that some people have found the control extremely useful since they said that's exactly what they were looking for.
3. I didn't write the JavaScript/DHMLT portion of the code. It was taken from one of DynamicDrive's articles and is documented as such.
|
|
|
|
 |
|
 |
Yup. The world agrees...
http://www.w3schools.com/browsers/browsers_stats.asp
|
|
|
|
 |
|
 |
Tried the demo page. Attempting to re-sort throws an error. Does this control allow re-sorting of columns?
|
|
|
|
 |
|
 |
Yes sorting should work fine... What error screen are you seeing? In the demo, I'm using a session to hold the dataset that is read during pageload... If you wait till the session expires, than you may see a object null error.
|
|
|
|
 |
|
 |
I'm not the original poster of this thread, but some co-workers and I have tried the demo, and we're all getting the same error as soon as you open the demo and click on a header. Here's the details, not that there's a ton of information since we already know it happens when you Sort:
"Object reference not set to an instance of an object.
Description: An unhandled exception occurred
Exception Details: System.NullReferenceException: Object reference not set to an instance of an object.
Source Error:
An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.
Stack Trace:
[NullReferenceException: Object reference not set to an instance of an object.]
GridSlideHeaderDemo.WebForm1.OnSort(Object source, DataGridSortCommandEventArgs e)
System.Web.UI.WebControls.DataGrid.OnSortCommand(DataGridSortCommandEventArgs e) +110
System.Web.UI.WebControls.DataGrid.OnBubbleEvent(Object source, EventArgs e) +422
System.Web.UI.Control.RaiseBubbleEvent(Object source, EventArgs args) +26
System.Web.UI.WebControls.DataGridItem.OnBubbleEvent(Object source, EventArgs e) +106
System.Web.UI.Control.RaiseBubbleEvent(Object source, EventArgs args) +26
System.Web.UI.WebControls.LinkButton.OnCommand(CommandEventArgs e) +121
System.Web.UI.WebControls.LinkButton.System.Web.UI.IPostBackEventHandler.RaisePostBackEvent(String eventArgument) +115
System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) +18
System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) +138
System.Web.UI.Page.ProcessRequestMain() +1277"
|
|
|
|
 |
|
 |
I've made some adjustments to the OnSort function (not to the control) that will avoid session object problems. Try it again and let me know
|
|
|
|
 |
|
 |
Beautiful...just what i've been looking for! This allows me to avoid those EXPENSIVE datagrid controls and focus on the datagrid control that i'm extremely familiar with now. Thank you very much.
|
|
|
|
 |