Hello Ganesh,
I suppose that you are asking about the calendar of jqxDateTimeInput.
You could set its dropDownVerticalAlignment
property to ‘top’.
Please, check this example:
import * as React from 'react';
import JqxDateTimeInput from 'jqwidgets-scripts/jqwidgets-react-tsx/jqxdatetimeinput';
class App extends React.PureComponent<{}> {
constructor(props: {}) {
super(props);
}
public render() {
return (
<div>
<br /><br /><br /><br />
<br /><br /><br /><br />
<br /><br /><br /><br />
<label>Date Input</label>
<JqxDateTimeInput
width={300} height={30} dropDownVerticalAlignment={'top'} />
</div>
);
}
}
export default App;
Best Regards,
Martin
jQWidgets Team
http://www.jqwidgets.com/