Here's an example of a statement of best practice on the subject from a reputable author.
Jacob Nielsen
Consistency and standards:
Users should not have to wonder whether different words, situations,
or actions mean the same thing. Follow
platform conventions.
A google or wikipedia search for HCI|UI principles|axioms|guidelines|heuristics will give you some other sources saying similar things.
The idea can have different names - sometimes it comes under the heading of "compatibility", and sometimes it's not explicitly named. Whatever the concept is called, it's usually justified in terms of the learnability of the interface and the cognitive cost it places on the user ("don't make me think"). When you think of it in terms of cognitive costs, it's possible to have a rational discussion about whether for example an extra up-front cost of learnability is justified by long-term productivity.
Consistency is a tricky concept in that it gets you into arguments about "consistency with what". There are various platform standards, and the argument in your case sets Windows platform standards against webapp platform standards. Another kind of consistency, which probably has more bearing on the usability of the application, is consistency with the expectations of the users. This can be determined by testing with real users, which is another thing that's usually listed among UI best practices.
Accessibility is another issue you might want to bring to the discussion. This can mean accommodating a whole range of users - somebody with a disability using an alternative browser, somebody who needs to up the font size because their eyes are tired, somebody browsing on a phone, somebody using an old browser. Being able to do this requires meaningful, intention-revealing markup, and standardised behaviour. You might be able to combine this with the behaviour proposed by your designer but it restricts the range of solutions available to the coder. On the other hand, you can also have a rational discussion in which you agree with your designer that accessibility isn't a big consideration, since for example it's an application for internal use.