I need to insert this code into directive:
<link rel="Stylesheet" type="text/css" href="CSSHandler.ashx?ModelIdentifier=bikester" />
<style type="text/css">
table
{
font-family: Arial;
font-size: 12px;
}
</style>
<script type="text/javascript">
var m_sDirection = 'rtl';
var theForm;
</script>
also I need another script to recognize this script, when this directive is load.
one last thing is, in the <link rel="Stylesheet" type="text/css" href="CSSHandler.ashx?ModelIdentifier=bikester" />
I have attribute call "bikester" that I get from the server so its dynamic
any idea to how do I inject dynamic content.
I'm not shore that I need a directive, maybe the controller can do this.
I think that directive will be the best best approach.