Is there a difference between using "#=" and "#:" when blocking references in my column bindings? They both seem to work for me, and I wanted to make sure one isn't preferred over the other for certain situations. Thank you.
columns.Bound(prac => prac.PractitionerId).ClientTemplate(
"<input type='checkbox' name='chkPractitioner' value='#= PractitionerId #' onclick='handleProviderSelected(this,#= LocationId #)' />"
).Width(45).HeaderTemplate(
" "
);