Hello
I have a created a new thread as i didn't find any suitable issue reported previously. I have having a rad date-picker within a div. The moment i click on the first date-picker . The second moves to the second line below. I have attached screen shots to get an idea of whats happening here.
I have a js method which is triggered on onclick of the DatePopupButton within the rad DatePicker.
function(objName, e)
{
var _left; var _top;
_left = document.body.scrollLeft+e.clientX;
_top = document.body.scrollTop+e.clientY;
//a switch statement to differentiate from which client the click occured
datePicker = <%= txtbox.ClientID %>;
datePicker.HidePopup()
var textBox = datePicker.GetTextBox();
var popupElement = datePicker.GetPopupContainer();
var dimensions = datePicker.GetElementDimensions(popupElement);
var position = datePicker.GetElementPosition(textBox);
datePicker.ShowPopup(_left, _top);
}
Do i need to handle this in a different way for other browser's. I see some additional items in the HTML of the page being created . I feel these are some runtime hiddenfields etc being created by the control.
This is working for IE and Mozilla.
I am using 5.0.4 of safari on windows. Also I am using Telerik.Web.UI.dll of the product version 2010.1.415.20
Thank you in advance.
I have a created a new thread as i didn't find any suitable issue reported previously. I have having a rad date-picker within a div. The moment i click on the first date-picker . The second moves to the second line below. I have attached screen shots to get an idea of whats happening here.
I have a js method which is triggered on onclick of the DatePopupButton within the rad DatePicker.
function(objName, e)
{
var _left; var _top;
_left = document.body.scrollLeft+e.clientX;
_top = document.body.scrollTop+e.clientY;
//a switch statement to differentiate from which client the click occured
datePicker = <%= txtbox.ClientID %>;
datePicker.HidePopup()
var textBox = datePicker.GetTextBox();
var popupElement = datePicker.GetPopupContainer();
var dimensions = datePicker.GetElementDimensions(popupElement);
var position = datePicker.GetElementPosition(textBox);
datePicker.ShowPopup(_left, _top);
}
Do i need to handle this in a different way for other browser's. I see some additional items in the HTML of the page being created . I feel these are some runtime hiddenfields etc being created by the control.
This is working for IE and Mozilla.
I am using 5.0.4 of safari on windows. Also I am using Telerik.Web.UI.dll of the product version 2010.1.415.20
Thank you in advance.