Hi
Basically it defines the Object Hirerachy i.e Document Object Model.
1) (item).Click : This will work incase if you are directly accessing the Parent Object(in your case it is 'item').
2)(item).object.click : This means the object which you are trying to access is not a direct object. I mean to say it has one container and on that it is exposed. so to acess that one you need to set to parent class and then search for the Object. This is applicable to Rendering type of object which develop through HTMl Tags or Ajax control.
To understand the difference you need to check 'View --> Source' in IE.
~regards
Basically it defines the Object Hirerachy i.e Document Object Model.
1) (item).Click : This will work incase if you are directly accessing the Parent Object(in your case it is 'item').
2)(item).object.click : This means the object which you are trying to access is not a direct object. I mean to say it has one container and on that it is exposed. so to acess that one you need to set to parent class and then search for the Object. This is applicable to Rendering type of object which develop through HTMl Tags or Ajax control.
To understand the difference you need to check 'View --> Source' in IE.
~regards