Creating a scheduling system with dates?

Hey so, quick question, Im currently trying to figure out a way to implement a way for people to be able to pick a day within 3 weeks of the current day for their service, but I don’t know how to implement dates very well for this type of case in fusetools. Any suggestions or links to where I could find some ideas?

Here is the UX code for what it more or less looks like, I just need these days to have a date attached to them, not just be a simple string.

This Week
			<SASi.Text FontSize="24" Alignment="Center" Margin="0,20,0,20" >Next Week</SASi.Text>
			<SASi.DateButton Text="Monday" Clicked="{NextMonday}" />
			<SASi.DateButton Text="Tuesday" Clicked="{NextTuesday}" />
			<SASi.DateButton Text="Wednesday" Clicked="{NextWednesday}" />
			<SASi.DateButton Text="Thursday" Clicked="{NextThursday}" />

			<SASi.Text FontSize="24" Alignment="Center" Margin="0,20,0,20" >Two Weeks</SASi.Text>
			<SASi.DateButton Text="Monday" Clicked="{TwoMonday}" />
			<SASi.DateButton Text="Tuesday" Clicked="{TwoTuesday}" />
			<SASi.DateButton Text="Wednesday" Clicked="{TwoWednesday}" />
			<SASi.DateButton Text="Thursday" Clicked="{TwoThursday}" />
		</StackPanel>
	</ScrollView>

Hi Caleb,

there is DatePicker which sounds like what you could use. And Fuse happily works with moment.js which could also help.

Other than that, please ask more specific questions and we’ll do our best to help.

Thanks Uldis,

So far so good. However, for example with that DatePicker, is there was way to set the date to just be todays date everytime it loads? and then set the max date to 14 days after that day? Or when you initialize the dates, do they have to be an exact date, like “2007-02-14T00:00:00.000Z”?

Actually, I figured it out. Thanks!