I have these 2 controls:
<div class="control-group">
<label class="control-label">Batch Date:</label>
<div class="controls with-tooltip">
<asp:TextBox runat="server" CssClass="mydate input-small" ID="BatchDate_txt" />
</div>
</div>
<div class="control-group">
<label class="control-label">Claim Month:</label>
<div class="controls with-tooltip">
<asp:TextBox runat="server" CssClass="mydatemonth input-small" ID="ClaimMonth_txt" />
</div>
</div>
what i want to achieve is this: when you pick the batch date,the claim month should allow you to pick only within the next 90days from the claim month. Note: the claim month datepicker displays only month.
I don't know if i was explicit enough but how do i go about this?