Link to home
Start Free TrialLog in
Avatar of PeteEngineer
PeteEngineerFlag for India

asked on

What the following Datagrid code will do?

Can anyone explain what the following  code will do?

 
  Dim tc As TemplateColumn
                    tc = New TemplateColumn
                    tc.ItemTemplate = New prj.GridTemplateHandler("ImagePath", "string", "", Me.strServerTimeZone)
                 DataGrid1.Columns.Add(tc)

Open in new window


Does it add any image to the column?  where the image will be picked?
SOLUTION
Avatar of Easwaran Paramasivam
Easwaran Paramasivam
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
It is adding a template column into the gird dynamically, the content of the item template depends on the implementation of GridTemplateHandler.

Share the code for the class and then will be able to tell you...
Avatar of PeteEngineer

ASKER

I have only the dll where this GridTemplateHandler located ..i dont have project ..

But from somewhere a image is picked that i need to findout
I have right clicked on the method and clicked on "go to definition"

I can see :

Public Class GridTemplateHandler
          Inherits System.Object
     Member of prj
Is it picking the same image everytime, what is this DLL, share the signature of class and methods that your are using....
But i can tell you the value inside tc.ItemTemplate

using break point
Yes image is same for all the rows in the same column when there is no data ..(ie a blank one not sure its image)..but image is different when there is data .. its comming from a table
the value inside that or signature of the method has two things only

1.CustomeCurrencyCulture
2. Hidecurrencysymbol
well where did you get this dll from, i hope there is some documentation for you to refer.
Other option is Use a dis-assembler like ILDASM and get the IL and see if it can give you some hint.....

Some disassemblers even create c# code from Assembled .Net DLL.
OK i got it :

When i put "test" instead of "" ..i am getting a "test" instead of image.

  tc.ItemTemplate = New prj.GridTemplateHandler("ImagePath", "string", "test", Me.strServerTimeZone)

So above function using a parameter of image location at the place of "test"

right now my problem is when i get i give a blank as this function parameter ..instead of showing blank in the rows of that column..its showing an error message ..i will post that error in the next post
"Image path is neither a datacolumn or a datarelation for table Table"

Why the above message is comming instead of blank rows in that column?
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Where i need to put the above code?

I need to make blanks in the rows ..how the above code help me in making it ?
No Where, i was just telling you that this might be the code in the method in your dll because of which it throws error
ASKER CERTIFIED SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Alright it fixed the issue ,,, so thanks for helping ...Yipieeeeeeee!!
Please rate and close this question.

Happy programming
:-)
Thanks!